#!/bin/sh

if type lzcat >/dev/null 2>&1; then
	lzcat -f "$1"
else
	lzma d "$1" -so
fi | tar x${Verbose+vv}
